home *** CD-ROM | disk | FTP | other *** search
- public class Intro$ForwardThread extends Thread {
- private final Intro this$0;
- boolean suspendFlag;
-
- public Intro$ForwardThread(Intro var1) {
- this.this$0 = var1;
- }
-
- public synchronized void myResume() {
- this.suspendFlag = false;
- this.notify();
- }
-
- public void mySuspend() {
- this.suspendFlag = true;
- }
-
- public void run() {
- if (!this.this$0.endLoop) {
- do {
- if (System.currentTimeMillis() - this.this$0.timer > 2000L) {
- this.this$0.endLoop = true;
- this.this$0.midlet.display.setCurrent(Intro.access$0(this.this$0));
- }
-
- try {
- Thread.sleep(100L);
- } catch (Exception var2) {
- ((Throwable)var2).printStackTrace();
- }
- } while(!this.this$0.endLoop);
-
- }
- }
- }
-